home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / lilo.preinst < prev    next >
Text File  |  2008-05-15  |  541b  |  20 lines

  1. #!/bin/sh -e
  2.  
  3.  
  4.  
  5. if [ -d /usr/share/lilo/contrib ]; then
  6.     echo
  7.     echo "WARNING:"
  8.     echo "The use of /usr/share/lilo/contrib as the directory of the" 
  9.     echo "bitmaps is deprecated and may be removed later."
  10.     echo "You may want to put your bitmaps on /usr/share/lilo instead."
  11.     echo "I will remove the packaged bitmaps but you must move yours"
  12.     echo "to other place."
  13.     echo
  14.     rm -f /usr/share/lilo/contrib/sid.bmp
  15.     rm -f /usr/share/lilo/contrib/sarge.bmp
  16.     rm -f /usr/share/lilo/contrib/debianlilo.bmp
  17.     rm -f /usr/share/lilo/contrib/coffee.bmp
  18. fi
  19.  
  20.